home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
BUSINESS
/
TAP110.ARJ
/
DEMO1.TAP
next >
Wrap
Text File
|
1991-08-26
|
3KB
|
137 lines
LWIDTH:24
TWIDTH:30
NUMBERS:0
ROUND:O
DECIMAL:2
FORMAT:5
P_H:66
P_W:70
P_TM:2
P_BM:3
P_LM:5
P_NUM:1
P_DATE:1
P_RFORM:N
P_TTL1:Examples
XxXxXx
" ****************************************",
" Examples of REAL Numbers operators,",
" functions, and expressions.",
" This tape is called DEMO1. You can",
" load it with the 'Files' menu.",
" ****************************************",
,
" --- EXAMPLES ---",
"Add a column of numbers:", + 1
, + 2.22
, + 3.33
"Subtotal", =
"Reverse sign (line 13)", -
" <Clear>", C
"Algebraic expression", = (1+2+3)*5
"Add that to the subtotal", +
"Add 5% of that", + 5%
"Subtotal (line 18)", =
"Line 13 + Line 18", = L13+L18
, =
" <Clear>", C
,
"Subtotals and Totals", + 1.1
, + 2.2
, + 3.3
"First subtotal", S
, + 10
, + 20
, + 30
"Second subtotal", S
"Show total", TS
, + 100
, + 200
"Show and clear total", T
"Show total (zero now)", TS
" <Clear>", C
,
"Adding a percentage", = 120+5%
, =
"Multiply by percentage", = 120*5%
, =
,
" --- PRECEDENCE ---",
"Highest: Functions", = 2^SQR(100)/2
, =
,
"Next highest: * / ^", = 1+2*3
, =
,
"Lowest: + -", = (1+2)*3
" parentheses override", =
,
" --- MATH FUNCTIONS ----",
"Absolute value", = ABS(-2.2)
, =
"Inverse (1/x)", = INV(5)
, =
"Square Root", = SQR(2)
, =
"Modulus", = MOD(33,17.5)
, =
"Logarithm base 10", = LOG(10^2)
, =
"Logarithm base e", = LN(e^e)/e
, =
"Delta Percent Change", = DL(100,150)
" 50% increase", =
"Round", = RND(1/7,3)
" Rounded to 3 places", =
,
" ---- FINANCIAL ----",
"Present Value of $1,000", = PV(1000,7.2%,10)
" in 10 years @ 7.2%", = $
,
"Future Value of $500", = FV(500,7.2%,10)
" in 10 years @ 7.2%", = $
,
"Present Value of Annuity", = PVA(100,6%,10)
" $100 for 10 years, 6%", = $
,
"Future Value of Annuity", = FVA(100,6%,10)
" $100 for 10 years, 6%", = $
,
"Loan Amount, 30 years,", = LAMT(877.58,10%/12,30*12)
" 10%, $877.58/month", = $
,
"Loan Payment per month", = LPMT(100000,10%/12,30*12)
" $100,000, 10%, 30 yrs", = $
,
"Interest Rate, $100,000", = LINT(100000,877.58,30*12)*12
" $877.58/month, 30 yrs", +
, C
"Payment periods,$100,000", = LPER(100000,877.58,10%/12)
" $877.58/month, 12%", =
,
"Gross Profit Margin", + $ 1000
" 20% profit margin", + GPM(1000,20%)
" Retail price", = $
, C
" ---- TRIGONOMETRIC ----",
"Sine", = SIN(pi/2)
, =
"Cosine", = COS(pi)
, =
"Tanget", = TAN(0.7854)
, =
"Arc Sine", = ASIN(1)
, =
"Arc Cosine", = ACOS(-1)
, =
"Arc Tangent", = ATAN(1)
, =
"Degrees to Radians", = DTOR(90)
, =
"Radians to Degrees", = RTOD(pi/2)
, =
"Sine of an angle given", = SIN(DTOR(90))
" in degrees", =
"Convert arcsine to", = RTOD(ASIN(1))
" degree measure", =